import * as React from "react" import { type SearchParams } from "@/types/table" import { getValidFilters } from "@/lib/data-table" import { Skeleton } from "@/components/ui/skeleton" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { Shell } from "@/components/shell" import { ProjectAVLTable } from "@/lib/project-avl/table/proejctAVL-table" import { getProjecTAVL } from "@/lib/project-avl/service" import { searchProjectAVLParamsCache } from "@/lib/project-avl/validations" import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise } export default async function IndexPage(props: IndexPageProps) { const searchParams = await props.searchParams const search = searchProjectAVLParamsCache.parse(searchParams) const validFilters = getValidFilters(search.filters) const promises = Promise.all([ getProjecTAVL({ ...search, filters: validFilters, }), ]) return (

프로젝트 AVL 리스트

{/*

프로젝트 PQ를 통과한 벤더의 리스트를 보여줍니다.{" "} 버튼 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다.

*/}
}> {/* */} } >
) }